Skip to content

Bump @biomejs/wasm-nodejs from 2.2.5 to 2.2.6#271

Merged
github-actions[bot] merged 1 commit into
Currentfrom
dependabot/npm_and_yarn/biomejs/wasm-nodejs-2.2.6
Oct 13, 2025
Merged

Bump @biomejs/wasm-nodejs from 2.2.5 to 2.2.6#271
github-actions[bot] merged 1 commit into
Currentfrom
dependabot/npm_and_yarn/biomejs/wasm-nodejs-2.2.6

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Oct 13, 2025

Bumps @biomejs/wasm-nodejs from 2.2.5 to 2.2.6.

Release notes

Sourced from @​biomejs/wasm-nodejs's releases.

Biome CLI v2.2.6

2.2.6

Patch Changes

  • #7071 a8e7301 Thanks @​ptkagori! - Added the useQwikMethodUsage lint rule for the Qwik domain.

    This rule validates Qwik hook usage. Identifiers matching useXxx must be called only within serialisable reactive contexts (for example, inside component$, route loaders/actions, or within other Qwik hooks), preventing common Qwik antipatterns.

    Invalid:

    // Top-level hook call is invalid.
    const state = useStore({ count: 0 });
    function helper() {
    // Calling a hook in a non-reactive function is invalid.
    const loc = useLocation();
    }

    Valid:

    component$(() => {
      const state = useStore({ count: 0 }); // OK inside component$.
      return <div>{state.count}</div>;
    });
    const handler = $(() => {
    const loc = useLocation(); // OK inside a $-wrapped closure.
    console.log(loc.params);
    });

  • #7685 52071f5 Thanks @​denbezrukov! - Fixed #6981: The NoUnknownPseudoClass rule no longer reports local pseudo-classes when CSS Modules are used.

  • #7640 899f7b2 Thanks @​arendjr! - Fixed #7638: useImportExtensions no longer emits diagnostics on valid import paths that end with a query or hash.

    Example

    // This no longer warns if `index.css` exists:
    import style from "../theme/index.css?inline";
  • #7071 a8e7301 Thanks @​ptkagori! - Added the useQwikValidLexicalScope rule to the Qwik domain.

    This rule helps you avoid common bugs in Qwik components by checking that your variables and functions are declared in the correct place.

... (truncated)

Commits
  • 2d77154 chore(deps): update github-actions (#7736)
  • e5b8058 ci: release (#7637)
  • a6d2391 chore(deps): update rust crate ureq to 3.1.2 (#7741)
  • b28dfd4 chore(deps): update rust crate libc to 0.2.177 (#7740)
  • 545c3ae chore(deps): update dependency @​types/node to v22.18.10 (#7738)
  • d6da4d5 fix(lint/useExhaustiveDependencies): correct fix for method calls (#7709)
  • 28c2e4b fix(deps): update rust crates (#7562)
  • 3eeb4df chore(deps): update rust crate camino to 1.2.1 (#7694)
  • 7e15df3 chore: update engines.pnpm to v10.18.0
  • dc9dca2 chore(deps): update taiki-e/install-action action to v2.62.21 (#7692)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@biomejs/wasm-nodejs](https://github.com/biomejs/biome) from 2.2.5 to 2.2.6.
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG_v1.md)
- [Commits](https://github.com/biomejs/biome/compare/@biomejs/biome@2.2.5...@biomejs/biome@2.2.6)

---
updated-dependencies:
- dependency-name: "@biomejs/wasm-nodejs"
  dependency-version: 2.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 13, 2025
@github-actions github-actions Bot merged commit 4f2d91b into Current Oct 13, 2025
10 checks passed
@github-actions github-actions Bot deleted the dependabot/npm_and_yarn/biomejs/wasm-nodejs-2.2.6 branch October 13, 2025 18:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Development

Successfully merging this pull request may close these issues.

1 participant